compress/flate.huffmanBitWriter.offsetFreq (field)
13 uses
	compress/flate (current package)
		huffman_bit_writer.go#L86: 	offsetFreq      []int32
		huffman_bit_writer.go#L98: 		offsetFreq:      make([]int32, offsetCodeCount),
		huffman_bit_writer.go#L300: 		offEnc.bitLength(w.offsetFreq) +
		huffman_bit_writer.go#L310: 		fixedOffsetEncoding.bitLength(w.offsetFreq) +
		huffman_bit_writer.go#L452: 			extraBits += int(w.offsetFreq[offsetCode]) * int(offsetExtraBits[offsetCode])
		huffman_bit_writer.go#L536: 	for i := range w.offsetFreq {
		huffman_bit_writer.go#L537: 		w.offsetFreq[i] = 0
		huffman_bit_writer.go#L548: 		w.offsetFreq[offsetCode(offset)]++
		huffman_bit_writer.go#L557: 	numOffsets = len(w.offsetFreq)
		huffman_bit_writer.go#L558: 	for numOffsets > 0 && w.offsetFreq[numOffsets-1] == 0 {
		huffman_bit_writer.go#L564: 		w.offsetFreq[0] = 1
		huffman_bit_writer.go#L568: 	w.offsetEncoding.generate(w.offsetFreq, 15)
		huffman_bit_writer.go#L634: 	w.offsetFreq[0] = 1
|  | The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |